home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / HENSA / MATHS / PLPLOT / PLPLOT.ZIP / plimp < prev    next >
Text File  |  1994-03-23  |  317b  |  17 lines

  1. #!/bin/sh
  2.  
  3. cd ..
  4. if [ -f plplot.tar.gz ]; then
  5.         echo "Gunzip plplot.tar.gz"
  6.         gunzip plplot.tar.gz
  7.  
  8.         echo "untarring plplot.tar"
  9.         tar xvf plplot.tar
  10.  
  11.         echo "Updating .import"
  12.         touch plplot/.import
  13.  
  14. else
  15.         echo "No file plplot.tar.gz.  Do you know what you're doing?"
  16. fi
  17.